home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / util / boot / appvm.lha / AppVM / vmemory.h < prev    next >
C/C++ Source or Header  |  1992-04-04  |  644b  |  28 lines

  1. #ifndef    EXEC_VMEMORY_H
  2. #define    EXEC_VMEMORY_H
  3. /*
  4. **    $Filename: exec/vmemory.h $
  5. **    $Release: X.VM $
  6. **    $Revision: XX.XX $
  7. **    $Date: 92/XX/XX $
  8. **
  9. **    Definitions and structures used by the VM memory allocation system
  10. **
  11. **    (C) Copyright 1992 Laurence Vanhelsuwé
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_NODES_H
  16. #include "exec/nodes.h"
  17. #endif /* EXEC_NODES_H */
  18.  
  19. /*----- Memory Requirement Types ---------------------------*/
  20. /*----- See the AllocMem() documentation for details--------*/
  21.  
  22. #define    MEMF_VM        (1L<<31)    /* Ask for VIRTUAL MEMORY */
  23.  
  24. #define VMEM_PAGESIZE    32768
  25. #define VMEM_PAGEMASK    (VMEM_PAGESIZE-1)
  26.  
  27. #endif    /* EXEC_VMEMORY_H */
  28.